home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 530 b | 37 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_EVAL16
-
- creation make
-
- feature
-
- make is
- local
- a: ARRAY[DOUBLE];
- do
- !!a.make(1,3);
- a.put(1,1);
- a.put(2,2);
- a.put(3,3);
- check
- a.item(1) = 1;
- a.item(2) = 2;
- a.item(3) = 3;
- end;
- a := Void;
- check
- a = Void;
- end;
- a := <<1,2,3>>;
- check
- a.item(1) = 1;
- a.item(2) = 2;
- a.item(3) = 3;
- end;
-
- end;
-
- end -- TEST_EVAL16
-